78aa93961577b8a8ba4ea0243de902fa7867cc77,src/org/pentaho/di/trans/steps/selectvalues/SelectValuesMeta.java,SelectValuesMeta,readRep,#Repository#number#List#Map#,546
Before Change
for (int i=0;i<nrmeta;i++)
{
metaName[i] = rep.getStepAttributeString (id_step, i, "meta_name"); //$NON-NLS-1$
metaRename[i] = rep.getStepAttributeString (id_step, i, "meta_rename"); //$NON-NLS-1$
metaType[i] = (int)rep.getStepAttributeInteger(id_step, i, "meta_type"); //$NON-NLS-1$
metaLength[i] = (int)rep.getStepAttributeInteger(id_step, i, "meta_length"); //$NON-NLS-1$
metaPrecision[i] = (int)rep.getStepAttributeInteger(id_step, i, "meta_precision"); //$NON-NLS-1$
After Change
{
meta[i] = new SelectMetadataChange();
meta[i].setName(rep.getStepAttributeString (id_step, i, "meta_name")); //$NON-NLS-1$
meta[i].setRename(rep.getStepAttributeString (id_step, i, "meta_rename")); //$NON-NLS-1$
meta[i].setType((int)rep.getStepAttributeInteger(id_step, i, "meta_type")); //$NON-NLS-1$
meta[i].setLength((int)rep.getStepAttributeInteger(id_step, i, "meta_length")); //$NON-NLS-1$
meta[i].setPrecision((int)rep.getStepAttributeInteger(id_step, i, "meta_precision")); //$NON-NLS-1$
meta[i].setStorageType(ValueMeta.getStorageType(rep.getStepAttributeString (id_step, i, "meta_storage_type"))); //$NON-NLS-1$
meta[i].setConversionMask(rep.getStepAttributeString (id_step, i, "meta_conversion_mask")); //$NON-NLS-1$
meta[i].setDecimalSymbol(rep.getStepAttributeString (id_step, i, "meta_decimal_symbol")); //$NON-NLS-1$
meta[i].setGroupingSymbol(rep.getStepAttributeString (id_step, i, "meta_grouping_symbol")); //$NON-NLS-1$
meta[i].setCurrencySymbol(rep.getStepAttributeString (id_step, i, "meta_currency_symbol")); //$NON-NLS-1$
}
}
catch(Exception e)